From 91d0c3f05a860aa206a2c57b26d799ddba09c72b Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Tue, 2 Sep 2025 12:51:24 +0200 Subject: [PATCH] i2pd: update boost dependencies Remove 'boost-system' from the dependencies. The 'boost-system' is a header-only library since version update of boost to '1.89.0'. Signed-off-by: Florian Eckert --- net/i2pd/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/net/i2pd/Makefile b/net/i2pd/Makefile index 246eff5709..b76788e534 100644 --- a/net/i2pd/Makefile +++ b/net/i2pd/Makefile @@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=i2pd PKG_VERSION:=2.58.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_BUILD_PARALLEL:=1 PKG_SOURCE_PROTO:=git @@ -24,13 +24,14 @@ PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=LICENSE PKG_CPE_ID:=cpe:/a:i2pd:i2pd +PKG_BUILD_DEPENDS:=boost + include $(INCLUDE_DIR)/package.mk define Package/i2pd SECTION:=net CATEGORY:=Network - DEPENDS:=+libopenssl +boost +boost-system \ - +boost-program_options +libatomic +zlib + DEPENDS:=+libopenssl +boost +boost-program_options +libatomic +zlib TITLE:=full-featured C++ implementation of I2P client URL:=https://github.com/PurpleI2P/i2pd USERID:=i2pd:i2pd -- 2.30.2